home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d16 / vbtools.arc / READ.ME < prev    next >
Text File  |  1991-06-17  |  4KB  |  99 lines

  1.                  MicroHelp VBTools Demonstration Program
  2.                
  3. MicroHelp's VBTools provides the programmer with a "grab bag" of services:
  4.  
  5.    Lots of Custom Controls. 
  6.       
  7.    Pre-written toolbox routines. All of them are included in the 
  8.    demo program.
  9.    
  10.    Assembly language routines to make your programs faster and smaller.
  11.    You don't need to know anything about assembly language to use them
  12.    because they are invoked just like SubPrograms and Functions. Several
  13.    of these routines are demonstrated.
  14.    
  15.    Key words that Microsoft forgot: MK?, CV? (including the MBF versions),
  16.    PLAY, BLOAD and BSAVE (for arrays other than variable-length string
  17.    arrays). Only the PLAY key word is demonstrated in this demo.
  18.    
  19.    Graphics special effects, which are in the demo.
  20.    
  21.    How to use some of the more useful Windows API routines. Many of these
  22.    are sprinkled throughout the demo.
  23.    
  24.    A blackjack game.
  25.    
  26.    A utility program giving you the functionality of $INCLUDE.
  27.  
  28. -------------------------------------------------------------------------
  29. The demonstration consists of these files:
  30.  
  31.    READ   .ME   This file
  32.    VBTOOLS.EXE  Demonstration program
  33.    VBTOOLS.VBX  Dynamic Link Library (DLL) with supporting routines
  34.    CARDS  .DLL  Dynamic Link Library containing playing card bitmaps
  35.    SOUND  .DRV  New and improved sound driver
  36.  
  37. In order to run this demonstration, you'll need the Visual Basic
  38. runtime DLL. The name of the file is VBRUN100.DLL. If you received a
  39. 1.2mb demo disk directly from MicroHelp, you'll find this file in
  40. the self extracting archive file VBRUN.EXE. Please see INSTALL.BAT
  41. for instructions on using this file.
  42.  
  43. If you don't have this file, you can download it from the MSSYS
  44. forum on CompuServe (the file name is VBRUN.ZIP).
  45.  
  46. The SOUND.DRV file that comes with Microsoft Windows 3.0 has a bug that
  47. effects "tempo" in PLAY statements. Microsoft has fixed the bug and the
  48. included SOUND.DRV file has the fix. In order to hear the music in the
  49. demo program as it was meant to be heard, you'll need to:
  50.  
  51.   1. COPY SOUND.DRV to your Windows System directory (not the Windows
  52.      directory).
  53.   2. Make sure that your SYSTEM.INI has the following line:
  54.   
  55.        sound.drv=sound.drv
  56.        
  57.   3. Restart Windows
  58.  
  59. IMPORTANT: Be sure that you don't have more than one file named SOUND.DRV
  60. in your path. If you do, Windows may read the wrong one and the music in
  61. our demo program may play "slowly".
  62.  
  63. -------------------------------------------------------------------------
  64. The actual product contains numerous demonstration applications,
  65. each of which shows you how to use one or more features from the
  66. product. This demonstration consists mainly of several of the
  67. example applications.
  68.  
  69. Please note that VBTOOLS.VBX and CARDS.DLL must be in your PATH
  70. when you execute VBTOOLS.EXE. Therefore, after you install the
  71. demonstration program, you will need to do one of two things:
  72.  
  73. 1. COPY VBTOOLS.VBX and CARDS.DLL to a directory that is in your PATH, or
  74. 2. Adjust your PATH so that it includes the directory where you install
  75.    VBTOOLS.VBX and CARDS.DLL.
  76.    
  77. If you have any problems installing or running the demonstration program,
  78. please call MicroHelp at (404) 594-1185.
  79.  
  80. -------------------------------------------------------------------------
  81. Double Clicking
  82.  
  83. We have had a report from someone who stated that after running VB and
  84. one of the VBTools example programs (he didn't know which one), that he
  85. could no longer double-click in *ANY* Windows application. He traced the
  86. problem to the following line in the SYSTEM.INI file:
  87.  
  88.     device=d:\windows\system\vtd.386
  89.     
  90. Replacing that line with the default line cured the problem:
  91.     
  92.     device=*.vtd
  93.     
  94. Unfortunately, the user did have a file VTD.386 dated 4/17/91, but he
  95. had no idea where it came from!    
  96.  
  97.  
  98. <End of file>
  99.